home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / ms_sh21c.zip / patches.os2 < prev    next >
Text File  |  1992-12-29  |  2KB  |  67 lines

  1. Only in new/include: limits.h
  2. Only in new/include/sys: stat.h
  3. Only in new/include/sys: types.h
  4. Only in new: readme.os2
  5. Only in new/src: makefile.os2
  6. diff -cr old/src/sh8.c new/src/sh8.c
  7. *** old/src/sh8.c    Mon Dec 14 10:55:26 1992
  8. --- new/src/sh8.c    Tue Dec 29 09:31:22 1992
  9. ***************
  10. *** 856,861 ****
  11. --- 856,865 ----
  12.       char    *s1;
  13.       int        count = 0;
  14.   
  15. + #if defined (OS2)
  16. +     if (!IsHPFSFileSystem (name)) {
  17. + #endif
  18.   /* Find start of file name */
  19.   
  20.       if ((s = strrchr (name, CHAR_UNIX_DIRECTORY)) == (char *)NULL)
  21. ***************
  22. *** 916,921 ****
  23. --- 920,929 ----
  24.       if (FL_TEST ('w'))
  25.           PrintWarningMessage ("<%s>\n", name);
  26.       }
  27. + #if defined (OS2)
  28. +     }
  29. + #endif
  30.   
  31.   /* Check for double slashes */
  32.     
  33. diff -cr old/src/system.c new/src/system.c
  34. *** old/src/system.c    Fri Sep 04 12:28:24 1992
  35. --- new/src/system.c    Tue Dec 29 09:09:48 1992
  36. ***************
  37. *** 261,266 ****
  38. --- 261,269 ----
  39.   static char * near    BuildOS2String (char **, char);
  40.   static int        ExtractFieldsFromLine (LineFields *);
  41.   
  42. + static int near StartTheSession (STARTDATA *SessionData, char *path,
  43. +                  char **argv);
  44.   /*
  45.    * System function with swapping
  46.    */
  47. ***************
  48. *** 1511,1517 ****
  49.           stdata.InitXSize = 100;
  50.           stdata.InitYSize = 100;
  51.   
  52. !         RetVal = StartTheSession (&stdata, path, argv)
  53.   
  54.           if (stdata.Environment != (char *)NULL)
  55.           free (stdata.Environment);
  56. --- 1514,1520 ----
  57.           stdata.InitXSize = 100;
  58.           stdata.InitYSize = 100;
  59.   
  60. !         RetVal = StartTheSession (&stdata, path, argv);
  61.   
  62.           if (stdata.Environment != (char *)NULL)
  63.           free (stdata.Environment);
  64.